home *** CD-ROM | disk | FTP | other *** search
/ Suzy B Software 2 / Suzy B Software CD-ROM 2 (1994).iso / extras / programm / gemfsc20 / gemfsc20.lzh / GEMFUNCS / EVNWBTN.C < prev    next >
C/C++ Source or Header  |  1993-03-07  |  524b  |  19 lines

  1. /**************************************************************************
  2.  * ENVWBTN.C - Wait for mouse button up or down.
  3.  *************************************************************************/
  4.  
  5. #include "gemfintl.h"
  6.  
  7. /*-------------------------------------------------------------------------
  8.  *
  9.  *-----------------------------------------------------------------------*/
  10.  
  11. void evn_wbutton(up_or_down)
  12.     short up_or_down;
  13. {
  14.     short dmy;
  15.  
  16.     evnt_button(1, 1, up_or_down, &dmy, &dmy, &dmy, &dmy);
  17. }
  18.  
  19.